SQL ManualFunctionsString FunctionsltrimOn this pageltrimltrimDescriptionSyntax:VARCHAR ltrim (VARCHAR str)This function removes the continuous whitespace that appears from the left of the string.Examplemysql> SELECT ltrim(' ab d');+------------------+| ltrim(' ab d') |+------------------+| ab d |+------------------+KeywordsLTRIM